home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / m_daed.arc / M_DAED.MSC < prev   
Encoding:
Text File  |  1986-08-18  |  6.7 KB  |  192 lines

  1. ; =============================================================
  2. ; M_DAED.MSC     Version 1.00
  3. ; Dwight Illk    Woodbury MN
  4. ; Last Revised:  18 Aug 1986, 09:50
  5. ; =============================================================
  6. ;
  7. ;       DAED (Dewar Advanced EDitor 6.03) Pop-Up Menu Configuration
  8. ;
  9. Comment ("Configured for DAED")
  10. Comment ("Using M_DAED V 1.00")
  11. Comment (' ')
  12. Comment ('Mouse button assignments:')
  13. Comment (' LEFT:     MAIN MENU')
  14. Comment (' RIGHT:    FILE MENU')
  15. Comment (' Special Cursor Keys')
  16.  
  17. ;
  18. ;       Parameters
  19. ;
  20. Sensitivity     (5, 8)          ; (Xinc, Yinc)
  21. Hysteresis      (4, 3)          ; (AutoX, AutoY)
  22. ReverseVideo    (Yes)           ; Menu is displayed in reverse video
  23. FixedMenu       (Yes)           ; Menu is in a fixed position
  24. MenuCenter      (80,0)          ; Menu is in upper righthand corner
  25. EnableBeep      (No)
  26.  
  27. ;
  28. ;       Cursor Definitions
  29. ;
  30. ArrowKeys: Cursor
  31. (
  32.         Left    ([a-5])
  33.         Right   ([a-6])
  34.         Up      ([a-7])
  35.         Down    ([a-4])
  36. )
  37. ;
  38. ;       Button Definitions
  39. ;
  40. LBM:    Button  (Menu(Main))            ; Left button, Main Menu
  41. RBF:    Button  (Menu(File))            ; Right button, File Menu
  42.  
  43. ;
  44. ;       Menu Definitions
  45. ;
  46. Main: Menu
  47. (
  48.         Title   ("Main")
  49.         Item    ("Help Menu          ", Menu(Help))
  50.         Item    ("Line Menu          ", Menu(Line))
  51.         Item    ("Buffer Menu        ", Menu(Buffer))
  52.         Item    ("Movement Menu      ", Menu(Movement))
  53.         Item    ("Replace Menu       ", Menu(Replace))
  54.         Item    ("Settings Menu      ", Menu(Settings))
  55.         Item    ("Misc Menu          ", Menu(Misc))
  56.         Item    ("File Menu          ", Menu(File))
  57.         Footer  ("DAED")
  58. )
  59.  
  60.  
  61. Line: Menu
  62. (
  63.         Title   ("Line")
  64.         Item    ("Delete Line       F4", Keys([F4]))
  65.         Item    ("Undelete Line    aF4", Keys([a-F4]))
  66.         Item    ("Erase to End of Line", Keys([c-End]))
  67.         Item    ("Delete to Tab   aF10", Keys([a-F10]))
  68.         Item    ("Mark Line(s)      F6", Keys([F6]))
  69.         Item    ("Unmark Line(s)   aF6", Keys([a-F6]))
  70.         Item    ("Move to Buffer    F5", Keys([F5]))
  71.         Item    ("Copy to Buffer    F8", Keys([F8]))
  72.         Item    ("Copy fm Buffer    F7", Keys([F7]))
  73.         Item    ("Insert Blank Line F3", Keys([F3]))
  74.         Item    ("Duplicate Line   aF9", Keys([a-F9]))
  75.         Item    ("Join              aJ", Keys([a-J]))
  76.         Item    ("Split       c<Enter>", Keys([c-Enter]))
  77.         Item    ("Format Para   <Alt>F", Keys([a-F]))
  78.         Item    ("Buffer Menu         ", Menu(Buffer))
  79.         Item    ("Main Menu           ", Menu(Main), Button(LBM))
  80.         Footer  ("DAED")
  81. )
  82.  
  83. Buffer: Menu
  84. (
  85.         Title   ("Buffer")
  86.         Item    ("Select Range     F6", Keys([F6]))
  87.         Item    ("Cancel Range    aF6", Keys([a-F6]))
  88.         Item    ("Move to Buffer   F5", Keys([F5]))
  89.         Item    ("Copy to Buffer   F8", Keys([F8]))
  90.         Item    ("Copy fm Buffer   F7", Keys([F7]))
  91.         Item    ("Move/Append     aF5", Keys([a-F5]))
  92.         Item    ("Copy/Append     aF8", Keys([a-F8]))
  93.         Item    ("Clear Buffer    aF7", Keys([a-F7]))
  94.         Item    ("Select Buffer 1  a1", Keys([a-1]))
  95.         Item    ("Select Buffer 2  a2", Keys([a-2]))
  96.         Item    ("Select Buffer 3  a3", Keys([a-3]))
  97.         Item    ("Buffer->file <Esc>W", Keys([Esc] "W "))
  98.         Item    ("Print Buffer       ", Keys([Esc] W [Enter]))
  99.         Item    ("Main Menu          ", Menu(Main), Button(LBM))
  100.         Footer  ("DAED")
  101. )
  102.  
  103. Help: Menu
  104. (
  105.         Title   ("Help")
  106.         Item    ("DAED Help    <Alt>H", Keys([a-H]))
  107.         Item    ("Function Key Help  ", Keys([a-H]"f"))
  108.         Item    ("Exit DAED Help    x", Keys(x))
  109.         Item    ("Main Menu          ", Menu(Main), Button(LBM))
  110.         Item    ("NOTE:                   ")
  111.         Item    ("When in DVED Help mode  ")
  112.         Item    ("selection of any item   ")
  113.         Item    ("from other menus will   ")
  114.         Item    ("give help for that item.")
  115.         Footer  ("DAED")
  116. )
  117.  
  118. Settings: Menu
  119. (
  120.         Title   ("Settings")
  121.         Item    ("Set Tab           aT", Keys([a-T]))
  122.         Item    ("Clear Tab         aC", Keys([a-C]))
  123.         Item    ("Set Left Margin   aL", Keys([a-L]))
  124.         Item    ("Set Right Margin  aR", Keys([a-R]))
  125.         Item    ("Set All Tabs  <Esc>T", Keys([Esc] "T "))
  126.         Item    ("Toggle Autowrap   aA", Keys([a-A]))
  127.         Item    ("Main Menu          ", Menu(Main), Button(LBM))
  128.         Footer  ("DAED")
  129. )
  130.  
  131. Movement: Menu
  132. (
  133.         Title   ("Movement")
  134.         Item    ("Search Forward      ", Keys([Esc] "S "))
  135.         Item    ("Search Backward     ", Keys([Esc] "B "))
  136.         Item    ("Repeat Search  <End>", Keys([End]))
  137.         Item    ("Top of File         ", Keys([Esc] B [Enter]))
  138.         Item    ("Bottom of File      ", Keys([Esc] S [Enter]))
  139.         Item    ("Goto Line #  <Esc>N#", Keys([Esc] "N "))
  140.         Item    ("Goto Next Line  big+", Keys([Plus]))
  141.         Item    ("Page Up             ", Keys([PgUp]))
  142.         Item    ("Page Down           ", Keys([PgDn]))
  143.         Item    ("Replace Menu        ", Menu(Replace), Button(LBM))
  144.         Item    ("Buffer Menu         ", Menu(Buffer))
  145.         Item    ("Main Menu           ", Menu(Main), Button(LBM))
  146.         Footer  ("DAED")
  147. )
  148.  
  149. Replace: Menu
  150. (
  151.         Title   ("Replace")
  152.         Item    ("Replace         <Esc>R", Keys([Esc] "R "))
  153.         Item    ("Global Replace  <Esc>G", Keys([Esc] "G "))
  154.         Item    ("Find Next or          ", Keys([End]))
  155.         Item    (" Confirm Change  <End>", Keys([End]))
  156.         Item    ("Movement Menu         ", Menu(Movement), Button(LBM))
  157.         Item    ("Main Menu             ", Menu(Main), Button(LBM))
  158.         Footer  ("DAED")
  159. )
  160.  
  161. File: Menu
  162. (
  163.         Title   ("File")
  164.         Item    ("Quit & Save     aF1", Keys([a-F1]))
  165.         Item    ("Abandon Changes aF2", Keys([a-F2]))
  166.         Item    ("Merge file   <Esc>M"  Keys([Esc] "M "))
  167.         Item    ("Buffer->file <Esc>W", Keys([Esc] "W "))
  168.         Footer  ("DAED")
  169. )
  170.  
  171. Misc: Menu
  172. (
  173.         Item    ("Push to DOS      aD", Keys([a-D]))
  174.         Item    ("Date/Time Stamp  aS", Keys([a-S]))
  175.         Item    ("Print Page       aP", Keys([a-P]))
  176.         Item    ("Hex Data Entry     ", Keys([Esc] "H "))
  177.         Item    ("Delete Word    big-", Keys([Minus]))
  178.         Item    ("Delete Rest of Text", Keys([Esc] "D " [Enter]))
  179.         Item    ("Main Menu          ", Menu(Main), Button(LBM))
  180.         Footer  ("DAED")
  181. )
  182.  
  183. ;
  184. ;       Mouse Definition
  185. ;
  186. Mouse
  187. (
  188.         Left    (LBM)                   ; Left Button:   Main Menu
  189.         Right   (RBF)                   ; Right Button:  File Menu
  190.         Cursor  (ArrowKeys)
  191. )
  192.